From 32f511afd2f69edd2ae1d55588ea50ebe8ece9ea Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 29 Sep 2015 10:26:05 +0200 Subject: [PATCH] x86/p2m-ept: adjust some types in ept_set_entry() Use unsigned and bool_t as appropriate. Signed-off-by: Jan Beulich Acked-by: Kevin Tian Reviewed-by: George Dunlap --- xen/arch/x86/mm/p2m-ept.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/arch/x86/mm/p2m-ept.c b/xen/arch/x86/mm/p2m-ept.c index d1a8c1b90c..ed4c4930bb 100644 --- a/xen/arch/x86/mm/p2m-ept.c +++ b/xen/arch/x86/mm/p2m-ept.c @@ -662,12 +662,12 @@ ept_set_entry(struct p2m_domain *p2m, unsigned long gfn, mfn_t mfn, { ept_entry_t *table, *ept_entry = NULL; unsigned long gfn_remainder = gfn; - int i, target = order / EPT_TABLE_ORDER; + unsigned int i, target = order / EPT_TABLE_ORDER; int ret, rc = 0; bool_t direct_mmio = (p2mt == p2m_mmio_direct); uint8_t ipat = 0; - int need_modify_vtd_table = 1; - int vtd_pte_present = 0; + bool_t need_modify_vtd_table = 1; + bool_t vtd_pte_present = 0; unsigned int iommu_flags = p2m_get_iommu_flags(p2mt); enum { sync_off, sync_on, sync_check } needs_sync = sync_check; ept_entry_t old_entry = { .epte = 0 }; -- 2.30.2